import Header from "@/components/Header"; import { FC, PropsWithChildren } from "react"; type Props = {}; // export const generateMetadata = (props: any) => { // console.log(`🚀🚀🚀🚀🚀-> in layout.tsx on 6`, props); // return { // title: "Sport", // }; // }; const Layout: FC> = (props) => { const { children } = props; return ( <>
{children}
); }; export default Layout;